home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / _null.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  371 b   |  24 lines

  1. /*  _null.h
  2.  
  3.     Definition of NULL.
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 9.0
  9.  *
  10.  *      Copyright (c) 1987, 1998 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14. /* $Revision:   9.1  $ */
  15.  
  16. #ifndef NULL
  17. #  if defined(__cplusplus) || defined(_Windows)
  18. #    define NULL 0
  19. #  else
  20. #    define NULL ((void *)0)
  21. #  endif
  22. #endif
  23.  
  24.